You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: algorithm-1/README.md
+35Lines changed: 35 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,41 @@ Katkıda bulunmak istiyorsanız, lütfen aşağıdaki adımları takip edin:
13
13
14
14
## SORU
15
15
16
+
On an 2 x 3 board, there are five tiles labeled from 1 to 5, and an empty square represented by 0. A move consists of choosing 0 and a 4-directionally adjacent number and swapping it.
17
+
18
+
The state of the board is solved if and only if the board is [[1,2,3],[4,5,0]].
19
+
20
+
Given the puzzle board board, return the least number of moves required so that the state of the board is solved. If it is impossible for the state of the board to be solved, return -1.
0 commit comments