Translate the given English sentence into French.
(inputSentence)
| 175 | |
| 176 | /** Translate the given English sentence into French. */ |
| 177 | translate(inputSentence) { |
| 178 | const inputSeq = this.encodeString(inputSentence); |
| 179 | const decodedSentence = this.decodeSequence(inputSeq); |
| 180 | return decodedSentence; |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | /** |
no test coverage detected