Skip to content

Commit

Permalink
Update Permutation.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CaiFengGH authored Jun 6, 2018
1 parent f9597ac commit 4f0d58c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DataStruct/Permutation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Permutation {
public void permutation(char[] cha,int from,int to){
//1-异常参数判断和递归结束条件
if(to <= 1){
if(to < 1){
return ;
}else if(from == to){
System.out.println(String.valueOf(cha));
Expand Down

0 comments on commit 4f0d58c

Please sign in to comment.