Rotate by 90 degree | GFG POTD | 5-11-24 | Medium Level | GFG Problem of the day | Matrix

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

Комментарии • 5

  • @shubhamKumar-h2t1f
    @shubhamKumar-h2t1f 23 дня назад +1

    Nice... Explaination

  • @tusharpokhriyal2957
    @tusharpokhriyal2957 23 дня назад +1

    Nice explanation

  • @codewithuday
    @codewithuday  23 дня назад

    void rotate(vector& mat) {
    // Your code goes here
    // Reverse -> Transpose
    reverse(mat.begin(),mat.end()); // reverse
    // Transpose
    for(int i=0;i