Skip to content

Commit 9cfa0bd

Browse files
committed
modify description
1 parent 27c4596 commit 9cfa0bd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Arrays/move_element_to_end.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
Move 0's to end
3-
Sample Input : [1, 0, 3, 0, 0, 5]
2+
Move Element to end
3+
Sample Input : [1, 0, 3, 0, 0, 5] To move: 0
44
Output : [1, 3, 5, 0, 0, 0]
55
66
This is a function called MoveElementToEnd that takes an array of integers array and an integer toMove as input,

Arrays/move_element_to_end.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
Move 0's to end
3-
Sample Input : [1, 0, 3, 0, 0, 5]
2+
Move Element to end
3+
Sample Input : [1, 0, 3, 0, 0, 5] To move: 0
44
Output : [1, 3, 5, 0, 0, 0]
55
66
This is a function called MoveElementToEnd that takes an array of integers array and an integer toMove as input,

0 commit comments

Comments
 (0)