Skip to content

Commit

Permalink
9차시 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
YIM2UL2ET committed Mar 7, 2024
1 parent 43d31fe commit 2de2f15
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ std::string FindValue(int n)

void Hanoi(int level, int start, int between, int end)
{
std::ios_base::sync_with_stdio(false);
std::cout.tie(NULL);

if (level == 1) std::cout << start << " " << end << "\n";
else {
Hanoi(level-1, start, end, between);
Expand Down

0 comments on commit 2de2f15

Please sign in to comment.