input
stringlengths 664
664
| output
sequencelengths 1
1
| id
stringlengths 41
41
|
---|---|---|
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 03/07/1937, input_format=dd/mm/yyyy
Output:
| [
"07/03/1937"
] | task1404-3af1cfc09f82442aa4cef66654f57703 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 01/29/1618, input_format=mm/dd/yyyy
Output:
| [
"29/01/1618"
] | task1404-024b920abcdc427eb5065d1651d65a71 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 18/04/2007, input_format=dd/mm/yyyy
Output:
| [
"04/18/2007"
] | task1404-c8ba43daa64e456d8720bfe05e0b1c13 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 02/07/1740, input_format=mm/dd/yyyy
Output:
| [
"07/02/1740"
] | task1404-a8d60ab761f1413db507f0a9dbdeb57c |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 11/15/1747, input_format=mm/dd/yyyy
Output:
| [
"15/11/1747"
] | task1404-1d3f474f40f0498eaf2c57f55ca1fb94 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 02/03/1869, input_format=dd/mm/yyyy
Output:
| [
"03/02/1869"
] | task1404-e579ad3f863d4b2c8b22d248c96311d1 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 04/24/1708, input_format=mm/dd/yyyy
Output:
| [
"24/04/1708"
] | task1404-e903e7b23fbd4cbf981bb5c3583d74d7 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 02/20/1893, input_format=mm/dd/yyyy
Output:
| [
"20/02/1893"
] | task1404-7ac96aca8c334ed5857fbf240dc5ed8f |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 14/12/1858, input_format=dd/mm/yyyy
Output:
| [
"12/14/1858"
] | task1404-93c317ee2dee4ef8b20fc47729c10fd6 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 29/05/1760, input_format=dd/mm/yyyy
Output:
| [
"05/29/1760"
] | task1404-4fe9b5b1e59c46da8db9d041a9e4421d |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 15/08/1673, input_format=dd/mm/yyyy
Output:
| [
"08/15/1673"
] | task1404-0da66b886d7b440dae69ab92861a0891 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 17/01/1986, input_format=dd/mm/yyyy
Output:
| [
"01/17/1986"
] | task1404-77333ea63ae94b98be90be5eccd3df65 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 12/04/1616, input_format=dd/mm/yyyy
Output:
| [
"04/12/1616"
] | task1404-bc94dd9507e24b1d91720549af6537fd |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 11/03/1897, input_format=mm/dd/yyyy
Output:
| [
"03/11/1897"
] | task1404-9a83bdda752b44fbaf6e8d78df5778c5 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 30/03/1901, input_format=dd/mm/yyyy
Output:
| [
"03/30/1901"
] | task1404-b3d29f9f38f14cb6afec583782ddbafd |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 10/29/1827, input_format=mm/dd/yyyy
Output:
| [
"29/10/1827"
] | task1404-7c899d3160a74fab82b7546c94b0760f |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 01/06/1964, input_format=mm/dd/yyyy
Output:
| [
"06/01/1964"
] | task1404-52ee58c823884d97880b11ee59f87fa7 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 11/16/1884, input_format=mm/dd/yyyy
Output:
| [
"16/11/1884"
] | task1404-32d3541cf8de43ec86a362c81a7a74fc |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 24/11/1602, input_format=dd/mm/yyyy
Output:
| [
"11/24/1602"
] | task1404-cc5fcd59c738444ba422124476828480 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 02/25/1638, input_format=mm/dd/yyyy
Output:
| [
"25/02/1638"
] | task1404-5a9d014433a44050b240b432b6e93807 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 06/02/1897, input_format=mm/dd/yyyy
Output:
| [
"02/06/1897"
] | task1404-11f5f1c4f3384de89f018eff2745cd39 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 12/02/1919, input_format=dd/mm/yyyy
Output:
| [
"02/12/1919"
] | task1404-3e7446d1326b40f9af219cbaaa631a90 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 24/06/1716, input_format=dd/mm/yyyy
Output:
| [
"06/24/1716"
] | task1404-5372180c409f446d9128ce7f94b7b2b7 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 26/07/1616, input_format=dd/mm/yyyy
Output:
| [
"07/26/1616"
] | task1404-2bd1fa7416a643288fcee6175a9a961a |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 04/25/1796, input_format=mm/dd/yyyy
Output:
| [
"25/04/1796"
] | task1404-e75fa7f27ade48e983bb211f78c02b06 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 10/01/1676, input_format=mm/dd/yyyy
Output:
| [
"01/10/1676"
] | task1404-8cb6684088bc4c04b8fc40cf57727798 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 04/03/1719, input_format=mm/dd/yyyy
Output:
| [
"03/04/1719"
] | task1404-69524761a5364f1db3ce578d203b47a6 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 14/03/1692, input_format=dd/mm/yyyy
Output:
| [
"03/14/1692"
] | task1404-a3fdc6369d8c4b65abc1888684455d8d |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 20/07/1640, input_format=dd/mm/yyyy
Output:
| [
"07/20/1640"
] | task1404-f100dab927ca477f9ab05e779d77eac1 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 10/17/1714, input_format=mm/dd/yyyy
Output:
| [
"17/10/1714"
] | task1404-966e4c0e7b964f8db1ab67f1bcf7d149 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 08/09/1851, input_format=dd/mm/yyyy
Output:
| [
"09/08/1851"
] | task1404-a6d79b967b18485794d88df0cd07d644 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 02/12/1630, input_format=mm/dd/yyyy
Output:
| [
"12/02/1630"
] | task1404-f1dae5e027574c6bbbcf87d9fca7d380 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 02/29/1652, input_format=mm/dd/yyyy
Output:
| [
"29/02/1652"
] | task1404-cb1fe4fda6334fbdbf06fb848067a135 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 07/14/1786, input_format=mm/dd/yyyy
Output:
| [
"14/07/1786"
] | task1404-12466823163245619567233d26dd6c50 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 10/23/1675, input_format=mm/dd/yyyy
Output:
| [
"23/10/1675"
] | task1404-081f5fe30f294b1e80fb0bb48a218f9f |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 07/03/1699, input_format=mm/dd/yyyy
Output:
| [
"03/07/1699"
] | task1404-2b54dbb824ba40b6922c1cd61c06e8ae |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 04/05/1749, input_format=dd/mm/yyyy
Output:
| [
"05/04/1749"
] | task1404-b20da94297c943bb8cfb41da91c50994 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 06/02/1852, input_format=mm/dd/yyyy
Output:
| [
"02/06/1852"
] | task1404-25d519fa495d4b08baa551d35a5e5874 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 08/04/1750, input_format=dd/mm/yyyy
Output:
| [
"04/08/1750"
] | task1404-bbb721744abb46a89d080e59ebfdbb88 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 26/11/1792, input_format=dd/mm/yyyy
Output:
| [
"11/26/1792"
] | task1404-794146b653604d55be8cf01a11fcd235 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 06/07/1950, input_format=dd/mm/yyyy
Output:
| [
"07/06/1950"
] | task1404-9abbf1d9980f4f2f9607b1a4414d1ad5 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 01/11/1868, input_format=mm/dd/yyyy
Output:
| [
"11/01/1868"
] | task1404-e1ed8d3558934afb943c2b60808e179a |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 04/26/1748, input_format=mm/dd/yyyy
Output:
| [
"26/04/1748"
] | task1404-f5d82b78b4464d36a591109a0a655d27 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 12/05/1867, input_format=mm/dd/yyyy
Output:
| [
"05/12/1867"
] | task1404-65a1bb334e204302bcbe14e4739b57eb |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 10/03/1753, input_format=dd/mm/yyyy
Output:
| [
"03/10/1753"
] | task1404-7a8ca922d842474a958d535eb619de0c |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 16/08/1931, input_format=dd/mm/yyyy
Output:
| [
"08/16/1931"
] | task1404-e3c73cb0c4d54388a5d6faf9d29f2a64 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 13/04/1905, input_format=dd/mm/yyyy
Output:
| [
"04/13/1905"
] | task1404-869a3d569d92405c9ea946b604f2e52f |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 25/07/1707, input_format=dd/mm/yyyy
Output:
| [
"07/25/1707"
] | task1404-5ecfde77248746a281460c36a4fac9e4 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 05/03/2006, input_format=dd/mm/yyyy
Output:
| [
"03/05/2006"
] | task1404-8dd32d1491a3461b9e4853a5a746c940 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 25/02/2011, input_format=dd/mm/yyyy
Output:
| [
"02/25/2011"
] | task1404-0214d659426040958ac3beaa59750f92 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 12/15/1786, input_format=mm/dd/yyyy
Output:
| [
"15/12/1786"
] | task1404-c508de3a719e4e2fafec9ede999eedd9 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 03/15/1977, input_format=mm/dd/yyyy
Output:
| [
"15/03/1977"
] | task1404-f8f5afa12e8f4da7a3763eae81154d7b |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 03/13/1991, input_format=mm/dd/yyyy
Output:
| [
"13/03/1991"
] | task1404-74fdc603c2b24216a503796f3af68558 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 01/10/1668, input_format=mm/dd/yyyy
Output:
| [
"10/01/1668"
] | task1404-713ded580960424b8dea14bda8f005c5 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 12/15/1925, input_format=mm/dd/yyyy
Output:
| [
"15/12/1925"
] | task1404-7622191f7f264d78a498a9eade39e07f |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 01/06/1886, input_format=dd/mm/yyyy
Output:
| [
"06/01/1886"
] | task1404-f7a53eb2680a4444b5fa658ec4246b8a |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 10/02/2010, input_format=mm/dd/yyyy
Output:
| [
"02/10/2010"
] | task1404-0cffdfe2e2584d508feb0124162f66a0 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 01/07/1673, input_format=mm/dd/yyyy
Output:
| [
"07/01/1673"
] | task1404-281426abaadb4f439c64dd4d29d42866 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 29/07/1629, input_format=dd/mm/yyyy
Output:
| [
"07/29/1629"
] | task1404-077b32b712cf482490299ee1967ab5e0 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 20/05/1687, input_format=dd/mm/yyyy
Output:
| [
"05/20/1687"
] | task1404-c84765799d724f16af433cef313cfe4d |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 08/01/1912, input_format=mm/dd/yyyy
Output:
| [
"01/08/1912"
] | task1404-24e83da192a640fdad21b8bf05231707 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 04/13/1824, input_format=mm/dd/yyyy
Output:
| [
"13/04/1824"
] | task1404-e00f4c9e1e18494ea667a1a8b60d3be6 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 10/12/1877, input_format=dd/mm/yyyy
Output:
| [
"12/10/1877"
] | task1404-6d169d45ac2c4fdf9b42dfebc5f0bf4b |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 03/12/1794, input_format=mm/dd/yyyy
Output:
| [
"12/03/1794"
] | task1404-78c3aef3397c469e85a69950d81af205 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 15/08/2018, input_format=dd/mm/yyyy
Output:
| [
"08/15/2018"
] | task1404-4f255763a34e4b9891de2103f2ced9d6 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 11/17/1783, input_format=mm/dd/yyyy
Output:
| [
"17/11/1783"
] | task1404-bc88e515d51b4f448eacc3f5b8c76a87 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 22/06/1982, input_format=dd/mm/yyyy
Output:
| [
"06/22/1982"
] | task1404-b1bb1400dec146eea15227a4ab023721 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 26/02/1962, input_format=dd/mm/yyyy
Output:
| [
"02/26/1962"
] | task1404-18e1e78099d040a18cccf57d6516617d |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 27/12/1928, input_format=dd/mm/yyyy
Output:
| [
"12/27/1928"
] | task1404-8425bc3dcc1a4a11b3d520c27e4e0060 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 12/12/1704, input_format=dd/mm/yyyy
Output:
| [
"12/12/1704"
] | task1404-cfb4e4705c444a91bf181eef5dacbdbe |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 01/12/1894, input_format=mm/dd/yyyy
Output:
| [
"12/01/1894"
] | task1404-4678494da6aa4ba6ad41031bdafc74b1 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 07/21/1845, input_format=mm/dd/yyyy
Output:
| [
"21/07/1845"
] | task1404-df69e5445bd94243a773da7237380e76 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 12/08/1857, input_format=mm/dd/yyyy
Output:
| [
"08/12/1857"
] | task1404-ff69ef9123e4473a86626cd2f5f8ddc7 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 17/10/1615, input_format=dd/mm/yyyy
Output:
| [
"10/17/1615"
] | task1404-a2bd74acf5404b359f93899e49681d6d |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 08/31/2018, input_format=mm/dd/yyyy
Output:
| [
"31/08/2018"
] | task1404-1ed5c507c4e64c66a82a819399a333e4 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 09/02/1772, input_format=mm/dd/yyyy
Output:
| [
"02/09/1772"
] | task1404-4e6de5d53e394d91bc348c068bc996f6 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 30/01/1707, input_format=dd/mm/yyyy
Output:
| [
"01/30/1707"
] | task1404-c4c1ce32ae0346359f45a8dcf7a9f177 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 10/26/1777, input_format=mm/dd/yyyy
Output:
| [
"26/10/1777"
] | task1404-0eff7ad99b804d5092b704562a1fccb1 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 06/10/1720, input_format=dd/mm/yyyy
Output:
| [
"10/06/1720"
] | task1404-445a060f28934d1b85279dde0e210796 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 03/26/1836, input_format=mm/dd/yyyy
Output:
| [
"26/03/1836"
] | task1404-23740b778992403d943c7ac9b468171f |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 05/15/1874, input_format=mm/dd/yyyy
Output:
| [
"15/05/1874"
] | task1404-fa8eb01352eb455fa9e5e840db52e9d1 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 06/16/1660, input_format=mm/dd/yyyy
Output:
| [
"16/06/1660"
] | task1404-d8b3f92b39f947a8a1313243a4742c6a |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 04/22/1805, input_format=mm/dd/yyyy
Output:
| [
"22/04/1805"
] | task1404-709e06c7a3d64fec8e56c59288307c9e |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 09/06/1907, input_format=mm/dd/yyyy
Output:
| [
"06/09/1907"
] | task1404-770d32c8411a46fa8decdc7aa672aae4 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 06/23/1995, input_format=mm/dd/yyyy
Output:
| [
"23/06/1995"
] | task1404-eec467b4ced7409687f864befa08f5ba |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 02/13/1985, input_format=mm/dd/yyyy
Output:
| [
"13/02/1985"
] | task1404-4f34f15b1aa843fa8473ebb9adf8d967 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 02/23/1608, input_format=mm/dd/yyyy
Output:
| [
"23/02/1608"
] | task1404-4aa3253898b34bed905338cde61c3535 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 01/09/1723, input_format=dd/mm/yyyy
Output:
| [
"09/01/1723"
] | task1404-3d6554f2e07b438e8759f1036605d962 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 02/06/1633, input_format=mm/dd/yyyy
Output:
| [
"06/02/1633"
] | task1404-6c3e61c44d6a48d5be100bbd26da0baa |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 18/11/1929, input_format=dd/mm/yyyy
Output:
| [
"11/18/1929"
] | task1404-7d758f04fbce464ebdecbbf915dfe7d3 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 10/10/1889, input_format=mm/dd/yyyy
Output:
| [
"10/10/1889"
] | task1404-5f866afc30e94cb0b8c7373ca093eb73 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 08/02/1746, input_format=dd/mm/yyyy
Output:
| [
"02/08/1746"
] | task1404-dfaf3ba62f9a44658d483f1fa0e278f7 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 05/13/1838, input_format=mm/dd/yyyy
Output:
| [
"13/05/1838"
] | task1404-0d3363d1b43d44a5bbb14e1c8c71c5c9 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 20/02/1823, input_format=dd/mm/yyyy
Output:
| [
"02/20/1823"
] | task1404-c51606bff2a14ea6b8ea8c50ded77a31 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 11/04/2004, input_format=mm/dd/yyyy
Output:
| [
"04/11/2004"
] | task1404-f34b18828cac4a23bf9e62a69943e19d |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 08/05/1922, input_format=mm/dd/yyyy
Output:
| [
"05/08/1922"
] | task1404-d564d0b133214bf7be3b2363df3ccea0 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 21/05/1917, input_format=dd/mm/yyyy
Output:
| [
"05/21/1917"
] | task1404-1f9a8246ac7c41cda253b98991b7bced |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 06/26/1865, input_format=mm/dd/yyyy
Output:
| [
"26/06/1865"
] | task1404-e958c4ca9ba4434d80efbdbeaeb11df1 |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 10/30/2004, input_format=mm/dd/yyyy
Output:
| [
"30/10/2004"
] | task1404-eb98537565764954979c2f6e0ad4059a |
Definition: In this task, you are given a date in a particular format and you need to convert to another format. If given format is "dd/mm/yyyy" then convert to "mm/dd/yyyy". If given format is "mm/dd/yyyy" then convert to "dd/mm/yyyy".
Positive Example 1 -
Input: 10/05/1847, input_format=dd/mm/yyyy
Output: 05/10/1847
Positive Example 2 -
Input: 02/18/1602, input_format=mm/dd/yyyy
Output: 18/02/1602
Negative Example 1 -
Input: 08/07/1628, input_format=dd/mm/yyyy
Output: 08/07/1628
Negative Example 2 -
Input: 10/17/2009, input_format=mm/dd/yyyy
Output: 2009/10/17
Now complete the following example -
Input: 04/17/1955, input_format=mm/dd/yyyy
Output:
| [
"17/04/1955"
] | task1404-f020dad5f0954948bb990f3c3b9fa2a2 |