Fix typos in comments (#2354)

This commit is contained in:
Manan-Rathi
2021-10-01 10:38:17 +05:30
committed by GitHub
parent 40e055b03b
commit ed63a90289
3 changed files with 4 additions and 4 deletions

View File

@ -3,8 +3,8 @@ import java.util.*;
public class WordBoggle {
/**
* O(nm * 8^s + ws) time where n=width of boggle board, m=height of boggle board, s=length of
* longest word in string array, w= length of string array, 8 is due to 8 explorable neighbours
* O(nm * 8^s + ws) time where n = width of boggle board, m = height of boggle board, s = length of
* longest word in string array, w = length of string array, 8 is due to 8 explorable neighbours
* O(nm + ws) space.
*/
public static List<String> boggleBoard(char[][] board, String[] words) {