Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add solutions to lc problems: No.3029 #2316

Merged
merged 9 commits into from
Feb 4, 2024
Prev Previous commit
Next Next commit
feat: add solutions to lc problems: No.3029
  • Loading branch information
Nothing-avil authored Feb 4, 2024
commit 874de9892b631cd401df1cac66ec42bcc4631284
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
function minimumTimeToInitialState(word: string, k: number): number {
const n = word.length;
for (let i = 1; i <= 10000; i++) {
const re = i * k;
if (re >= n) {
return i;
}
const str = word.substring(re);
let flag = true;
for (let j = 0; j < str.length; j++) {
if (str[j] !== word[j]) {
flag = false;
break;
}
}
if (flag) {
return i;
}
}
return 0;
}