由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - leetcode的Text Justification的OJ
相关主题
Text JustificationL intern 面经
text justification 有人ac吗问一道面试题
问一个facebook的电面leetcode Parlindrome Partition run time error
G电面一题Leetcode的系统真是弱爆了
Permutation leetcode-leetcode里的Palindrome partition问题
问下LeetCode上的题目:count and sayLeetcode书中missing range一题的答案是不是错的?
请教一道leetcode的online judge题LeetCode balanced Binary tree 请教
Leetcode的几个题。请问leetcode wordladder题什么意思?
相关话题的讨论汇总
话题: oj话题: string话题: arraylist话题: paragraph
进入JobHunting版参与讨论
1 (共1页)
s*****9
发帖数: 93
1
下面这个测试例通过不了
input output expected
[""], 2 [] [" "]
我加了下面的代码处理这个corner case。 OJ的这个测试例有问题。
ArrayList paragraph = new ArrayList();

if(words.length == 0) {
StringBuffer line = new StringBuffer();
for(int j = 0; j < L; j++) {
line.append(" ");
}
paragraph.add(line.toString());
return paragraph;
}
C***U
发帖数: 2406
2
OJ上有些题目的意思交代不清楚
你得通过例子才能明白他的要求
不过我觉得一些细节无所谓了吧
面试的时候问清楚面试官应该好一些吧

【在 s*****9 的大作中提到】
: 下面这个测试例通过不了
: input output expected
: [""], 2 [] [" "]
: 我加了下面的代码处理这个corner case。 OJ的这个测试例有问题。
: ArrayList paragraph = new ArrayList();
:
: if(words.length == 0) {
: StringBuffer line = new StringBuffer();
: for(int j = 0; j < L; j++) {
: line.append(" ");

s*****9
发帖数: 93
3
赞同。
顺带报告做题时的问题,支持leetcode。

【在 C***U 的大作中提到】
: OJ上有些题目的意思交代不清楚
: 你得通过例子才能明白他的要求
: 不过我觉得一些细节无所谓了吧
: 面试的时候问清楚面试官应该好一些吧

1 (共1页)
进入JobHunting版参与讨论
相关主题
请问leetcode wordladder题什么意思?Permutation leetcode-
leetcode的Valid Number测试真的变态问下LeetCode上的题目:count and say
Leetcode的题能看到test cases么?请教一道leetcode的online judge题
leetcode新题求助:Course Schedule IILeetcode的几个题。
Text JustificationL intern 面经
text justification 有人ac吗问一道面试题
问一个facebook的电面leetcode Parlindrome Partition run time error
G电面一题Leetcode的系统真是弱爆了
相关话题的讨论汇总
话题: oj话题: string话题: arraylist话题: paragraph